c8c61a904e7480da1aabcaabe50a6c9bc74467db,src/main/java/fastily/jwiki/dwrap/ImageInfo.java,ImageInfo,ImageInfo,#String#Reply#,66
Before Change
{
super(r.getStringR("user"), title, r.getStringR("comment"), Instant.parse(r.getStringR("timestamp")));
size = r.getIntR("size");
dimensions = new Tuple<>(r.getIntR("width"), r.getIntR("height"));
if (r.has("thumburl"))
{
thumburl = genURL(r.getStringR("thumburl"));
thumbdimensions = new Tuple<>(r.getIntR("thumbwidth"), r.getIntR("thumbheight"));
}
else
After Change
{
super(GSONP.gString(r, "user"), null, GSONP.gString(r, "comment"), Instant.parse(GSONP.gString(r, "timestamp")));
size = r.get("size").getAsInt();
dimensions = new Tuple<>(r.get("width").getAsInt(), r.get("height").getAsInt());
url = genURL(GSONP.gString(r, "url"));
sha1 = GSONP.gString(r, "sha1");